ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / CollectionViewResponse<T> Class / Items Property






In This Topic
    Items Property (CollectionViewResponse<T>)
    In This Topic
    The items data for Read command.
    Syntax
    'Declaration
     
    
    <JsonConverterAttribute(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)>
    Public Property Items As System.Collections.Generic.IEnumerable(Of T)
    'Usage
     
    
    Dim instance As CollectionViewResponse(Of T)
    Dim value As System.Collections.Generic.IEnumerable(Of T)
     
    instance.Items = value
     
    value = instance.Items
    [JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
    public System.Collections.Generic.IEnumerable<T> Items {get; set;}
    public read-write property Items: System.Collections.Generic.IEnumerable; 
    JsonConverterAttribute(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)
    public function get,set Items : System.Collections.Generic.IEnumerable
    [JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
    public: __property System.Collections.Generic.IEnumerable<T*>* get_Items();
    public: __property void set_Items( 
       System.Collections.Generic.IEnumerable<T*>* value
    );
    [JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
    public:
    property System.Collections.Generic.IEnumerable<T^>^ Items {
       System.Collections.Generic.IEnumerable<T^>^ get();
       void set (    System.Collections.Generic.IEnumerable<T^>^ value);
    }
    See Also